! Profile Functions for Chicago (ozone) for the APEX/MSS paper  (8/30/18)

MaxTempCat
! Temperature ranges (categories) in Fahrenheit
TABLE
INPUT1 INTRANGE 1        "MaxTemp"
RESULT INTEGER 1         "TempCatM"
1  
#

AvgTempCat
! Temperature ranges (categories) in Fahrenheit
TABLE
INPUT1 INTRANGE 4        "AvgTemp"
50 68 77
RESULT INTEGER 4       "TempCatA"
1 2 3 4 
#

DiaryPools
! Group activity diaries into pools
TABLE
INPUT1 INTRANGE 3        "MaxTemp"
55 84
INPUT2 INTRANGE 1        "AvgTemp"
INPUT3 INTINDEX 7        "DayOfWeek"
RESULT INTEGER 21        "Pool number"
4 5 6
1 2 3
1 2 3
1 2 3
1 2 3
1 2 3
4 5 6 
#

AC_Home
! Has air conditioning at home
! from 2009 AHS table (no table for 2011)
TABLE
INPUT1 PROBABILITY 2     "A/C probabilities"
0.95 0.05
RESULT INTEGER 2         "Yes/No"
1 2
#

DailyConditional1
! For penetration values for vehicles (local/urban/interstate)
! From 2011 Highway Statistics Table HM-71
TABLE
INPUT1 PROBABILITY 3    
0.13 0.56 0.31
RESULT INTEGER 3        
1 2 3
#